home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / daolibb / mainfrm.h < prev    next >
C/C++ Source or Header  |  1998-12-30  |  2KB  |  65 lines

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_MAINFRM_H__BCBC9B6B_9F6F_11D2_91E5_EE9021000000__INCLUDED_)
  6. #define AFX_MAINFRM_H__BCBC9B6B_9F6F_11D2_91E5_EE9021000000__INCLUDED_
  7.  
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11.  
  12. #include "ChildView.h"
  13.  
  14. class CMainFrame : public CFrameWnd
  15. {
  16.     
  17. public:
  18.     CMainFrame();
  19. protected: 
  20.     DECLARE_DYNAMIC(CMainFrame)
  21.  
  22. // Attributes
  23. public:
  24.  
  25. // Operations
  26. public:
  27.  
  28. // Overrides
  29.     // ClassWizard generated virtual function overrides
  30.     //{{AFX_VIRTUAL(CMainFrame)
  31.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  32.     virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36. public:
  37.     virtual ~CMainFrame();
  38. #ifdef _DEBUG
  39.     virtual void AssertValid() const;
  40.     virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42.  
  43. protected:  // control bar embedded members
  44.     CStatusBar  m_wndStatusBar;
  45.     CToolBar    m_wndToolBar;
  46.     CChildView    m_wndView;
  47.  
  48. // Generated message map functions
  49. protected:
  50.     //{{AFX_MSG(CMainFrame)
  51.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  52.     afx_msg void OnSetFocus(CWnd *pOldWnd);
  53.         // NOTE - the ClassWizard will add and remove member functions here.
  54.         //    DO NOT EDIT what you see in these blocks of generated code!
  55.     //}}AFX_MSG
  56.     DECLARE_MESSAGE_MAP()
  57. };
  58.  
  59. /////////////////////////////////////////////////////////////////////////////
  60.  
  61. //{{AFX_INSERT_LOCATION}}
  62. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  63.  
  64. #endif // !defined(AFX_MAINFRM_H__BCBC9B6B_9F6F_11D2_91E5_EE9021000000__INCLUDED_)
  65.